Consolidating all folios in a text file


Table of Contents

Consolidating all folios in a text file
2017.Feb.17, 08:00pm
2017.Feb.20, 11:00am
Name: Sohini Chattopadhyay
Date and Time:

2017.Feb.17, 08:00pm

Location: 112 St NY 10025
Subject: creating sohini_all_folios.txt

In the lab class at Fayerweather Hall, we learnt some new codes on Git Bash. We learnt how to put a new entry into a file with the sign > and how to append text to a file with the sign >>. we also learnt the use of piping and how it helps to convert the output into an input for a new command in a single line. For our homework, we were to append all the contents of our assigned folios into a single text file titled <name>_all_folios.txt and push it on to the remote repository on Github.

The process appeared to be simple so I began to work on it at night. With the >> command I appended a few documents, and to be sure, I verified the content with the command cat <filename>. I accidentally missed the code >> and instead typed > so my previous inputs got erased. I began to redo the process after realizing that at this moment, it requires some serious concentration because it is pretty easy to miss a step.

After the file was complete with all the required folios, I tried to do a git commit. An error showed up that the files were untracked. I checked some guide on Google and recognized that I had to use the command git add as well. After git add, I entered git commit. My git bash seemed to freeze and I had to use the command ctrl d to kill it.


Name: Sohini Chattopadhyay
Date and Time:

2017.Feb.20, 11:00am

Location: 112 St NY 10025
Subject: pushing file to remote repository GR8975

I pushed the file on to the remote repository successfully.